home *** CD-ROM | disk | FTP | other *** search
/ PC World Komputer 2010 April / PCWorld0410.iso / hity wydania / Ubuntu 9.10 PL / karmelkowy-koliberek-desktop-9.10-i386-PL.iso / casper / filesystem.squashfs / etc / bash_completion.d / clisp < prev    next >
Text File  |  2009-04-02  |  704b  |  27 lines

  1. # -*- mode: shell-script; sh-basic-offset: 8; indent-tabs-mode: t -*-
  2. # ex: ts=8 sw=8 noet filetype=sh
  3. #
  4. # bash brogrammable completion for various Common Lisp implementations by
  5. # Nikodemus Siivola <nikodemus@random-state.net>
  6.  
  7. _clisp()
  8. {
  9.     local cur
  10.  
  11.     COMPREPLY=()
  12.     cur=`_get_cword`
  13.  
  14.     # completing an option (may or may not be separated by a space)
  15.     if [[ "$cur" == -* ]]; then
  16.     COMPREPLY=( $( compgen -W '-h --help --version --license -B -K \
  17.                      -M -m -L -N -E -q --quiet --silent -w -I -ansi \
  18.                      -traditional -p -C -norc -i -c -l -o -x ' \
  19.                      -- $cur ) )
  20.     else
  21.     _filedir
  22.     fi
  23.  
  24.     return 0
  25. }
  26. complete -F _clisp $default clisp
  27.